home *** CD-ROM | disk | FTP | other *** search
- /*
- * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIPermission.idl
- */
-
- #ifndef __gen_nsIPermission_h__
- #define __gen_nsIPermission_h__
-
-
- #ifndef __gen_nsISupports_h__
- #include "nsISupports.h"
- #endif
-
- /* For IDL files that don't want to include root IDL files. */
- #ifndef NS_NO_VTABLE
- #define NS_NO_VTABLE
- #endif
-
- /* starting interface: nsIPermission */
- #define NS_IPERMISSION_IID_STR "28f16d80-157b-11d5-a542-0010a401eb10"
-
- #define NS_IPERMISSION_IID \
- {0x28f16d80, 0x157b, 0x11d5, \
- { 0xa5, 0x42, 0x00, 0x10, 0xa4, 0x01, 0xeb, 0x10 }}
-
- /**
- * This interface defines a "permission" object,
- * used to specify allowed/blocked objects from
- * user-specified sites (cookies, images etc).
- */
- class NS_NO_VTABLE nsIPermission : public nsISupports {
- public:
-
- NS_DEFINE_STATIC_IID_ACCESSOR(NS_IPERMISSION_IID)
-
- /**
- * The name of the host for which the permission is set
- */
- /* readonly attribute AUTF8String host; */
- NS_IMETHOD GetHost(nsACString & aHost) = 0;
-
- /**
- * a case-sensitive ASCII string, indicating the type of permission
- * (e.g., "cookie", "image", etc).
- * This string is specified by the consumer when adding a permission
- * via nsIPermissionManager.
- * @see nsIPermissionManager
- */
- /* readonly attribute ACString type; */
- NS_IMETHOD GetType(nsACString & aType) = 0;
-
- /**
- * The permission (see nsIPermissionManager.idl for allowed values)
- */
- /* readonly attribute PRUint32 capability; */
- NS_IMETHOD GetCapability(PRUint32 *aCapability) = 0;
-
- };
-
- /* Use this macro when declaring classes that implement this interface. */
- #define NS_DECL_NSIPERMISSION \
- NS_IMETHOD GetHost(nsACString & aHost); \
- NS_IMETHOD GetType(nsACString & aType); \
- NS_IMETHOD GetCapability(PRUint32 *aCapability);
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object. */
- #define NS_FORWARD_NSIPERMISSION(_to) \
- NS_IMETHOD GetHost(nsACString & aHost) { return _to GetHost(aHost); } \
- NS_IMETHOD GetType(nsACString & aType) { return _to GetType(aType); } \
- NS_IMETHOD GetCapability(PRUint32 *aCapability) { return _to GetCapability(aCapability); }
-
- /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
- #define NS_FORWARD_SAFE_NSIPERMISSION(_to) \
- NS_IMETHOD GetHost(nsACString & aHost) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHost(aHost); } \
- NS_IMETHOD GetType(nsACString & aType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetType(aType); } \
- NS_IMETHOD GetCapability(PRUint32 *aCapability) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCapability(aCapability); }
-
- #if 0
- /* Use the code below as a template for the implementation class for this interface. */
-
- /* Header file */
- class nsPermission : public nsIPermission
- {
- public:
- NS_DECL_ISUPPORTS
- NS_DECL_NSIPERMISSION
-
- nsPermission();
-
- private:
- ~nsPermission();
-
- protected:
- /* additional members */
- };
-
- /* Implementation file */
- NS_IMPL_ISUPPORTS1(nsPermission, nsIPermission)
-
- nsPermission::nsPermission()
- {
- /* member initializers and constructor code */
- }
-
- nsPermission::~nsPermission()
- {
- /* destructor code */
- }
-
- /* readonly attribute AUTF8String host; */
- NS_IMETHODIMP nsPermission::GetHost(nsACString & aHost)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* readonly attribute ACString type; */
- NS_IMETHODIMP nsPermission::GetType(nsACString & aType)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* readonly attribute PRUint32 capability; */
- NS_IMETHODIMP nsPermission::GetCapability(PRUint32 *aCapability)
- {
- return NS_ERROR_NOT_IMPLEMENTED;
- }
-
- /* End of implementation class template. */
- #endif
-
-
- #endif /* __gen_nsIPermission_h__ */
-